home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gscsepr.c < prev    next >
C/C++ Source or Header  |  1997-04-24  |  6KB  |  177 lines

  1. /* Copyright (C) 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gscsepr.c */
  20. /* Separation color space and operation definition */
  21. #include "gx.h"
  22. #include "gserrors.h"
  23. #include "gsrefct.h"
  24. #include "gsmatrix.h"            /* for gscolor2.h */
  25. #include "gscsepr.h"
  26. #include "gxcspace.h"
  27. #include "gxfixed.h"            /* for gxcolor2.h */
  28. #include "gxcolor2.h"            /* for gs_indexed_map */
  29. #include "gzstate.h"            /* for pgs->overprint */
  30.  
  31. extern gs_memory_t *gs_state_memory(P1(const gs_state *));
  32.  
  33. /* Define the Separation color space type. */
  34. cs_declare_procs(private, gx_concretize_Separation, gx_install_Separation,
  35.   gx_adjust_cspace_Separation,
  36.   gx_enum_ptrs_Separation, gx_reloc_ptrs_Separation);
  37. private cs_proc_concrete_space(gx_concrete_space_Separation);
  38. private cs_proc_remap_concrete_color(gx_remap_concrete_Separation);
  39. private cs_proc_init_color(gx_init_Separation);
  40. const gs_color_space_type
  41.     gs_color_space_type_Separation =
  42.      { gs_color_space_index_Separation, 1, false,
  43.        gx_init_Separation, gx_concrete_space_Separation,
  44.        gx_concretize_Separation, gx_remap_concrete_Separation,
  45.        gx_default_remap_color, gx_install_Separation,
  46.        gx_adjust_cspace_Separation, gx_no_adjust_color_count,
  47.        gx_enum_ptrs_Separation, gx_reloc_ptrs_Separation
  48.      };
  49.  
  50. /* setoverprint */
  51. void
  52. gs_setoverprint(gs_state *pgs, bool ovp)
  53. {    pgs->overprint = ovp;
  54. }
  55.  
  56. /* currentoverprint */
  57. bool
  58. gs_currentoverprint(const gs_state *pgs)
  59. {    return pgs->overprint;
  60. }
  61.  
  62. /* ------ Internal routines ------ */
  63.  
  64. /* Initialize a Separation color. */
  65.  
  66. private void
  67. gx_init_Separation(gs_client_color *pcc, const gs_color_space *pcs)
  68. {    pcc->paint.values[0] = 1.0;
  69. }
  70.  
  71. /* Remap a Separation color. */
  72.  
  73. private const gs_color_space *
  74. gx_concrete_space_Separation(const gs_color_space *pcs,
  75.   const gs_imager_state *pis)
  76. {    /* We don't support concrete Separation spaces yet. */
  77.     const gs_color_space *pacs =
  78.       (const gs_color_space *)&pcs->params.separation.alt_space;
  79.     return cs_concrete_space(pacs, pis);
  80. }
  81.  
  82. private int
  83. gx_concretize_Separation(const gs_client_color *pc, const gs_color_space *pcs,
  84.   frac *pconc, const gs_imager_state *pis)
  85. {    float tint = pc->paint.values[0];
  86.     int code;
  87.     gs_client_color cc;
  88.     const gs_color_space *pacs =
  89.       (const gs_color_space *)&pcs->params.separation.alt_space;
  90.  
  91.     if ( tint < 0 ) tint = 0;
  92.     else if ( tint > 1 ) tint = 1;
  93.     /* We always map into the alternate color space. */
  94.     code = (*pcs->params.separation.map->proc.tint_transform)(&pcs->params.separation, tint, &cc.paint.values[0]);
  95.     if ( code < 0 ) return code;
  96.     return (*pacs->type->concretize_color)(&cc, pacs, pconc, pis);
  97. }
  98.  
  99. private int
  100. gx_remap_concrete_Separation(const frac *pconc,
  101.   gx_device_color *pdc, const gs_imager_state *pis, gx_device *dev,
  102.   gs_color_select_t select)
  103. {    /* We don't support concrete Separation colors yet. */
  104.     return_error(gs_error_rangecheck);
  105. }
  106.  
  107. /* Install a Separation color space. */
  108.  
  109. private int
  110. gx_install_Separation(gs_color_space *pcs, gs_state *pgs)
  111. {    return (*pcs->params.separation.alt_space.type->install_cspace)
  112.         ((gs_color_space *)&pcs->params.separation.alt_space, pgs);
  113. }
  114.  
  115. /* Adjust the reference count of a Separation color space. */
  116.  
  117. private void
  118. gx_adjust_cspace_Separation(const gs_color_space *pcs, gs_memory_t *mem,
  119.   int delta)
  120. {    rc_adjust_const(pcs->params.separation.map, delta,
  121.             "gx_adjust_Separation");
  122.     (*pcs->params.separation.alt_space.type->adjust_cspace_count)
  123.      ((const gs_color_space *)&pcs->params.separation.alt_space, mem, delta);
  124. }
  125.  
  126. /* GC procedures */
  127.  
  128. #define pcs ((gs_color_space *)vptr)
  129.  
  130. private ENUM_PTRS_BEGIN(gx_enum_ptrs_Separation) {
  131.     return (*pcs->params.separation.alt_space.type->enum_ptrs)
  132.          (&pcs->params.separation.alt_space,
  133.           sizeof(pcs->params.separation.alt_space), index-1, pep);
  134.     }
  135.     ENUM_PTR(0, gs_color_space, params.separation.map);
  136. ENUM_PTRS_END
  137. private RELOC_PTRS_BEGIN(gx_reloc_ptrs_Separation) {
  138.     RELOC_PTR(gs_color_space, params.separation.map);
  139.     (*pcs->params.separation.alt_space.type->reloc_ptrs)
  140.       (&pcs->params.separation.alt_space, sizeof(gs_base_color_space), gcst);
  141. } RELOC_PTRS_END
  142.  
  143. #undef pcs
  144.  
  145. /* ---------------- Notes on real Separation colors ---------------- */
  146.  
  147. typedef ulong gs_separation;            /* BOGUS */
  148. #define gs_no_separation ((gs_separation)(-1L))
  149.  
  150. #define dev_proc_lookup_separation(proc)\
  151.   gs_separation proc(P4(gx_device *dev, const byte *sname, uint len,\
  152.     gx_color_value *num_levels))
  153.  
  154. #define dev_proc_map_tint_color(proc)\
  155.   gx_color_index proc(P4(gx_device *dev, gs_separation sepr, bool overprint,\
  156.     gx_color_value tint))
  157.  
  158. /*
  159.  * In principle, setting a Separation color space, or setting the device
  160.  * when the current color space is a Separation space, calls the
  161.  * lookup_separation device procedure to obtain the separation ID and
  162.  * the number of achievable levels.  Currently, the only hooks for doing
  163.  * this are unsuitable: gx_set_cmap_procs isn't called when the color
  164.  * space changes, and doing it in gx_remap_Separation is inefficient.
  165.  * Probably the best approach is to call gx_set_cmap_procs whenever the
  166.  * color space changes.  In fact, if we do this, we can probably short-cut
  167.  * two levels of procedure call in color remapping (gx_remap_color, by
  168.  * turning it into a macro, and gx_remap_DeviceXXX, by calling the
  169.  * cmap_proc procedure directly).  Some care will be required for the
  170.  * implicit temporary resetting of the color space in [color]image.
  171.  *
  172.  * For actual remapping of Separation colors, we need cmap_separation_direct
  173.  * and cmap_separation_halftoned, just as for the other device color spaces.
  174.  * So we need to break apart gx_render_gray in gxdither.c so it can also
  175.  * do the job for separations.
  176.  */
  177.